home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / demos / contempo / microhel / resource.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-10-06  |  1.4 KB  |  54 lines

  1. VERSION 2.00
  2. Begin Form AboutBox 
  3.    Caption         =   "Resource Info"
  4.    ClientHeight    =   2490
  5.    ClientLeft      =   5115
  6.    ClientTop       =   4755
  7.    ClientWidth     =   5385
  8.    Height          =   2895
  9.    Left            =   5055
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   2490
  12.    ScaleWidth      =   5385
  13.    Top             =   4410
  14.    Width           =   5505
  15.    Begin CommandButton cmdCancel 
  16.       Cancel          =   -1  'True
  17.       Caption         =   "OK"
  18.       Default         =   -1  'True
  19.       Height          =   375
  20.       Left            =   4440
  21.       TabIndex        =   1
  22.       Top             =   30
  23.       Width           =   735
  24.    End
  25.    Begin Image imgWinPic 
  26.       Height          =   480
  27.       Left            =   120
  28.       Picture         =   RESOURCE.FRX:0000
  29.       Top             =   120
  30.       Width           =   480
  31.    End
  32.    Begin Line Line1 
  33.       X1              =   1110
  34.       X2              =   4650
  35.       Y1              =   480
  36.       Y2              =   480
  37.    End
  38.    Begin Label lblResInfo 
  39.       Caption         =   "Label1"
  40.       Height          =   1665
  41.       Left            =   1110
  42.       TabIndex        =   0
  43.       Top             =   690
  44.       Width           =   3705
  45.    End
  46. DefInt A-Z
  47. Sub cmdCancel_Click ()
  48.     Unload Me
  49. End Sub
  50. Sub Form_Load ()
  51.     'keep the code in your Form_Load to a minimum
  52.     ShowResources lblResInfo
  53. End Sub
  54.